home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / DemonicDefence3.swf / scripts / DefineButton2_185 / BUTTONCONDACTION on(release).as
Encoding:
Text File  |  2005-09-27  |  396 b   |  21 lines

  1. on(release){
  2.    if(_root.modey == "Classic")
  3.    {
  4.       _root.modey = "Drop";
  5.       _root.dragOn = 1;
  6.       _root.holdIt = 0;
  7.    }
  8.    else if(_root.modey == "Drop")
  9.    {
  10.       _root.modey = "Hold";
  11.       _root.dragOn = 0;
  12.       _root.holdIt = 1;
  13.    }
  14.    else if(_root.modey == "Hold")
  15.    {
  16.       _root.modey = "Classic";
  17.       _root.dragOn = 0;
  18.       _root.holdIt = 0;
  19.    }
  20. }
  21.